home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2005 October
/
PCWOCT05.iso
/
Software
/
FromTheMag
/
Syn Text Editor 2.1.0.46
/
synsetup-2.1.0.46.exe
/
{app}
/
scripts
/
repl.vbs
< prev
next >
Wrap
Text File
|
2002-07-22
|
338b
|
17 lines
' Caption: <Text from the Menuitem>|
' Hint: <The Hint from the Menuitem>|
' Icon: <The Icon from the Menuitem>|
option explicit
sub Main(dummy)
dim i, l, p
set l = ActiveDocument.Lines
for i = 0 to l.Count - 1
p = InStr(1, l(i), "/")
if p > 0 then
l(i) = Left(l(i), p - 1)
end if
next
end sub